home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Libris Britannia 4
/
science library(b).zip
/
science library(b)
/
MEDICAL
/
4093.ZIP
/
BRAINSCP.ZIP
/
FRAME.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1986-01-02
|
2KB
|
68 lines
procedure Frame;
{written by W. Jeffrey Wilson & lynne ostergren,
Department of Psychological Sciences,
Indiana University - Purdue University at Fort Wayne,
2101 Coliseum Boulevard East,
Fort Wayne, IN 46805.
copyright, 1985 by Purdue Research Foundation, West Lafayette, Indiana 47907.
All Rights Reserved. Unmodified copies of this program
may be freely distributed. Each copy must contain this
notice.}
var
x : 1..80;
y : 1..25;
begin
for y:= 1 to 24 do
begin
GotoXY(1,y);
write(chr(179));
GotoXY(80,y);
write(chr(179));
end;
for x:= 1 to 79 do
begin
GotoXY(x,1);
write(chr(196));
GotoXY(x,24);
write(chr(196));
end;
GotoXY(1,1);
write(chr(218));
GotoXY(1,24);
write(chr(192));
GotoXY(80,1);
write(chr(191));
GotoXY(80,24);
write(chr(217));
GotoXY(1,25);
write('BRAINSCAPE by Wilson & ostergren * copr. 1985, Purdue Research Foundation')
end;
procedure InFrame;
var
x : 1..80;
y : 1..25;
begin
window(1,1,80,25);
for y:= 14 to 23 do
begin
GotoXY(50,y);
writeln(chr(179));
end;
for x:= 1 to 79 do
begin
GotoXY(x,13);
write(chr(196));
end;
GotoXY(1,13);
write(chr(195));
GotoXY(50,24);
write(chr(193));
GotoXY(80,13);
write(chr(180));
GotoXY(50,13);
write(chr(194));
end;